home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / clang / gnumake.zip / DEFAULT.C < prev    next >
C/C++ Source or Header  |  1994-05-17  |  10KB  |  383 lines

  1. /* Data base of default implicit rules for GNU Make.
  2. Copyright (C) 1988, 89, 90, 91, 92, 93, 94 Free Software Foundation, Inc.
  3. This file is part of GNU Make.
  4.  
  5. GNU Make is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2, or (at your option)
  8. any later version.
  9.  
  10. GNU Make is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. GNU General Public License for more details.
  14.  
  15. You should have received a copy of the GNU General Public License
  16. along with GNU Make; see the file COPYING.  If not, write to
  17. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  18.  
  19. #include "make.h"
  20. #include "rule.h"
  21. #include "dep.h"
  22. #include "file.h"
  23. #include "commands.h"
  24. #include "variable.h"
  25.  
  26.  
  27. /* This is the default list of suffixes for suffix rules.
  28.    `.s' must come last, so that a `.o' file will be made from
  29.    a `.c' or `.p' or ... file rather than from a .s file.  */
  30.  
  31. static char default_suffixes[]
  32.   = ".out .a .ln .o .c .cc .C .p .f .F .r .y .l .s .S \
  33. .mod .sym .def .h .info .dvi .tex .texinfo .texi .txinfo \
  34. .w .ch .web .sh .elc .el";
  35.  
  36. static struct pspec default_pattern_rules[] =
  37.   {
  38.     { "(%)", "%",
  39.     "$(AR) $(ARFLAGS) $@ $<" },
  40.  
  41.     /* The X.out rules are only in BSD's default set because
  42.        BSD Make has no null-suffix rules, so `foo.out' and
  43.        `foo' are the same thing.  */
  44.     { "%.out", "%",
  45.     "@rm -f $@ \n cp $< $@" },
  46.  
  47.     /* Syntax is "ctangle foo.w foo.ch foo.c".  */
  48.     { "%.c", "%.w %.ch",
  49.     "$(CTANGLE) $^ $@" },
  50.     { "%.tex", "%.w %.ch",
  51.     "$(CWEAVE) $^ $@" },
  52.  
  53.     { 0, 0, 0 }
  54.   };
  55.  
  56. static struct pspec default_terminal_rules[] =
  57.   {
  58.     /* RCS.  */
  59.     { "%", "%,v",
  60.     "+$(CHECKOUT,v)" },
  61.     { "%", "RCS/%,v",
  62.     "+$(CHECKOUT,v)" },
  63.  
  64.     /* SCCS.  */
  65.     { "%", "s.%",
  66.     "$(GET) $(GFLAGS) $(SCCS_OUTPUT_OPTION) $<" },
  67.     { "%", "SCCS/s.%",
  68.     "$(GET) $(GFLAGS) $(SCCS_OUTPUT_OPTION) $<" },
  69.  
  70.     { 0, 0, 0 }
  71.   };
  72.  
  73. static char *default_suffix_rules[] =
  74.   {
  75.     ".o",
  76.     "$(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@",
  77.     ".s",
  78.     "$(LINK.s) $^ $(LOADLIBES) $(LDLIBS) -o $@",
  79.     ".S",
  80.     "$(LINK.S) $^ $(LOADLIBES) $(LDLIBS) -o $@",
  81.     ".c",
  82.     "$(LINK.c) $^ $(LOADLIBES) $(LDLIBS) -o $@",
  83.     ".cc",
  84.     "$(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@",
  85.     ".C",
  86.     "$(LINK.C) $^ $(LOADLIBES) $(LDLIBS) -o $@",
  87.     ".f",
  88.     "$(LINK.f) $^ $(LOADLIBES) $(LDLIBS) -o $@",
  89.     ".p",
  90.     "$(LINK.p) $^ $(LOADLIBES) $(LDLIBS) -o $@",
  91.     ".F",
  92.     "$(LINK.F) $^ $(LOADLIBES) $(LDLIBS) -o $@",
  93.     ".r",
  94.     "$(LINK.r) $^ $(LOADLIBES) $(LDLIBS) -o $@",
  95.     ".mod",
  96.     "$(COMPILE.mod) -o $@ -e $@ $^",
  97.  
  98.     ".def.sym", 
  99.     "$(COMPILE.def) -o $@ $<",
  100.  
  101.     ".sh",
  102.     "cat $< >$@ \n chmod a+x $@",
  103.  
  104.     ".s.o",
  105. #if !defined(M_XENIX) || defined(__GNUC__)
  106.     "$(COMPILE.s) -o $@ $<",
  107. #else    /* Xenix.  */
  108.     "$(COMPILE.s) -o$@ $<",
  109. #endif    /* Not Xenix.  */
  110.     ".S.o",
  111. #if !defined(M_XENIX) || defined(__GNUC__)
  112.     "$(COMPILE.S) -o $@ $<",
  113. #else    /* Xenix.  */
  114.     "$(COMPILE.S) -o$@ $<",
  115. #endif    /* Not Xenix.  */
  116.     ".c.o",
  117.     "$(COMPILE.c) $< $(OUTPUT_OPTION)",
  118.     ".cc.o",
  119.     "$(COMPILE.cc) $< $(OUTPUT_OPTION)",
  120.     ".C.o",
  121.     "$(COMPILE.C) $< $(OUTPUT_OPTION)",
  122.     ".f.o",
  123.     "$(COMPILE.f) $< $(OUTPUT_OPTION)",
  124.     ".p.o",
  125.     "$(COMPILE.p) $< $(OUTPUT_OPTION)",
  126.     ".F.o",
  127.     "$(COMPILE.F) $< $(OUTPUT_OPTION)",
  128.     ".r.o",
  129.     "$(COMPILE.r) $< $(OUTPUT_OPTION)",
  130.     ".mod.o",
  131.     "$(COMPILE.mod) -o $@ $<",
  132.  
  133.     ".c.ln",
  134.     "$(LINT.c) -C$* $<",
  135.     ".y.ln",
  136.     "$(YACC.y) $< \n $(LINT.c) -C$* y.tab.c \n $(RM) y.tab.c",
  137.     ".l.ln",
  138.     "@$(RM) $*.c\n $(LEX.l) $< > $*.c\n$(LINT.c) -i $*.c -o $@\n $(RM) $*.c",
  139.  
  140.     ".y.c",
  141.     "$(YACC.y) $< \n mv -f y.tab.c $@",
  142.     ".l.c",
  143.     "@$(RM) $@ \n $(LEX.l) $< > $@",
  144.  
  145.     ".F.f",
  146.     "$(PREPROCESS.F) $< $(OUTPUT_OPTION)",
  147.     ".r.f",
  148.     "$(PREPROCESS.r) $< $(OUTPUT_OPTION)",
  149.  
  150.     /* This might actually make lex.yy.c if there's no %R%
  151.        directive in $*.l, but in that case why were you
  152.        trying to make $*.r anyway?  */
  153.     ".l.r",
  154.     "$(LEX.l) $< > $@ \n mv -f lex.yy.r $@",
  155.  
  156.     ".S.s",
  157.     "$(PREPROCESS.S) $< > $@",
  158.  
  159.     ".texinfo.info",
  160.     "$(MAKEINFO) $(MAKEINFO_FLAGS) $< -o $@",
  161.  
  162.     ".texi.info",
  163.     "$(MAKEINFO) $(MAKEINFO_FLAGS) $< -o $@",
  164.  
  165.     ".txinfo.info",
  166.     "$(MAKEINFO) $(MAKEINFO_FLAGS) $< -o $@",
  167.  
  168.     ".tex.dvi",
  169.     "$(TEX) $<",
  170.  
  171.     ".texinfo.dvi",
  172.     "$(TEXI2DVI) $(TEXI2DVI_FLAGS) $<",
  173.  
  174.     ".texi.dvi",
  175.     "$(TEXI2DVI) $(TEXI2DVI_FLAGS) $<",
  176.  
  177.     ".txinfo.dvi",
  178.     "$(TEXI2DVI) $(TEXI2DVI_FLAGS) $<",
  179.  
  180.     ".w.c",
  181.     "$(CTANGLE) $< - $@",    /* The `-' says there is no `.ch' file.  */
  182.  
  183.     ".web.p",
  184.     "$(TANGLE) $<",
  185.  
  186.     ".w.tex",
  187.     "$(CWEAVE) $< - $@",    /* The `-' says there is no `.ch' file.  */
  188.  
  189.     ".web.tex",
  190.     "$(WEAVE) $<",
  191.  
  192.     0, 0,
  193.   };
  194.  
  195. static char *default_variables[] =
  196.   {
  197.     "AR", "ar",
  198. #ifndef __hpux
  199.     "ARFLAGS", "rv",
  200. #else
  201.     /* HPUX ar's f flag says to truncate the file names to archive member
  202.        name length in comparisons, so replacement notices the equality.  */
  203.     "ARFLAGS", "rfv",
  204. #endif
  205.     "AS", "as",
  206.     "CC", "cc",
  207.     "CXX", "g++",
  208.  
  209.     /* This expands to $(CO) $(COFLAGS) $< $@ if $@ does not exist,
  210.        and to the empty string if $@ does exist.  */
  211.     "CHECKOUT,v",
  212.     "$(patsubst $@-noexist,$(CO) $(COFLAGS) $< $@,\
  213.         $(filter-out $@,$(firstword $(wildcard $@) $@-noexist)))",
  214.  
  215.     "CO", "co",
  216.     "CPP", "$(CC) -E",
  217. #ifdef    CRAY
  218.     "CF77PPFLAGS", "-P",
  219.     "CF77PP", "/lib/cpp",
  220.     "CFT", "cft77",
  221.     "CF", "cf77",
  222.     "FC", "$(CF)",
  223. #else    /* Not CRAY.  */
  224. #ifdef    _IBMR2
  225.     "FC", "xlf",
  226. #else
  227. #ifdef    __convex__
  228.     "FC", "fc",
  229. #else
  230.     "FC", "f77",
  231. #endif /* __convex__ */
  232. #endif /* _IBMR2 */
  233.     /* System V uses these, so explicit rules using them should work.
  234.        However, there is no way to make implicit rules use them and FC.  */
  235.     "F77", "$(FC)",
  236.     "F77FLAGS", "$(FFLAGS)",
  237. #endif    /* Cray.  */
  238.     "GET", SCCS_GET,
  239.     "LD", "ld",
  240.     "LEX", "lex",
  241.     "LINT", "lint",
  242.     "M2C", "m2c",
  243. #ifdef    pyr
  244.     "PC", "pascal",
  245. #else
  246. #ifdef    CRAY
  247.     "PC", "PASCAL",
  248.     "SEGLDR", "segldr",
  249. #else
  250.     "PC", "pc",
  251. #endif    /* CRAY.  */
  252. #endif    /* pyr.  */
  253.     "YACC", "yacc",    /* Or "bison -y"  */
  254.     "MAKEINFO", "makeinfo",
  255.     "TEX", "tex",
  256.     "TEXI2DVI", "texi2dvi",
  257.     "WEAVE", "weave",
  258.     "CWEAVE", "cweave",
  259.     "TANGLE", "tangle",
  260.     "CTANGLE", "ctangle",
  261.  
  262.     "RM", "rm -f",
  263.  
  264.     "LINK.o", "$(CC) $(LDFLAGS) $(TARGET_ARCH)",
  265.     "COMPILE.c", "$(CC) $(CFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c",
  266.     "LINK.c", "$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) $(TARGET_ARCH)",
  267.     "COMPILE.cc", "$(CXX) $(CXXFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c",
  268.     "COMPILE.C", "$(COMPILE.cc)",
  269.     "LINK.cc", "$(CXX) $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS) $(TARGET_ARCH)",
  270.     "LINK.C", "$(LINK.cc)",
  271.     "YACC.y", "$(YACC) $(YFLAGS)",
  272.     "LEX.l", "$(LEX) $(LFLAGS) -t",
  273.     "COMPILE.f", "$(FC) $(FFLAGS) $(TARGET_ARCH) -c",
  274.     "LINK.f", "$(FC) $(FFLAGS) $(LDFLAGS) $(TARGET_ARCH)",
  275.     "COMPILE.F", "$(FC) $(FFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c",
  276.     "LINK.F", "$(FC) $(FFLAGS) $(CPPFLAGS) $(LDFLAGS) $(TARGET_ARCH)",
  277.     "COMPILE.r", "$(FC) $(FFLAGS) $(RFLAGS) $(TARGET_ARCH) -c",
  278.     "LINK.r", "$(FC) $(FFLAGS) $(RFLAGS) $(LDFLAGS) $(TARGET_ARCH)",
  279.     "COMPILE.def", "$(M2C) $(M2FLAGS) $(DEFFLAGS) $(TARGET_ARCH)",
  280.     "COMPILE.mod", "$(M2C) $(M2FLAGS) $(MODFLAGS) $(TARGET_ARCH)",
  281.     "COMPILE.p", "$(PC) $(PFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c",
  282.     "LINK.p", "$(PC) $(PFLAGS) $(CPPFLAGS) $(LDFLAGS) $(TARGET_ARCH)",
  283.     "LINK.s", "$(CC) $(ASFLAGS) $(LDFLAGS) $(TARGET_MACH)",
  284.     "COMPILE.s", "$(AS) $(ASFLAGS) $(TARGET_MACH)",
  285.     "LINK.S", "$(CC) $(ASFLAGS) $(CPPFLAGS) $(LDFLAGS) $(TARGET_MACH)",
  286.     "COMPILE.S", "$(CC) $(ASFLAGS) $(CPPFLAGS) $(TARGET_MACH) -c",
  287. #if !defined(M_XENIX) || defined(__GNUC__)
  288.     "PREPROCESS.S", "$(CC) -E $(CPPFLAGS)",
  289. #else    /* Xenix.  */
  290.     "PREPROCESS.S", "$(CC) -EP $(CPPFLAGS)",
  291. #endif    /* Not Xenix.  */
  292.     "PREPROCESS.F", "$(FC) $(FFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -F",
  293.     "PREPROCESS.r", "$(FC) $(FFLAGS) $(RFLAGS) $(TARGET_ARCH) -F",
  294.     "LINT.c", "$(LINT) $(LINTFLAGS) $(CPPFLAGS) $(TARGET_ARCH)",
  295.  
  296. #ifndef    NO_MINUS_C_MINUS_O
  297. #if !defined(M_XENIX) || defined(__GNUC__)
  298.     "OUTPUT_OPTION", "-o $@",
  299. #else    /* Xenix.  */
  300.     "OUTPUT_OPTION", "-Fo$@",
  301. #endif    /* Not Xenix.  */
  302. #endif
  303.  
  304. #ifdef    SCCS_GET_MINUS_G
  305.     "SCCS_OUTPUT_OPTION", "-G$@",
  306. #endif
  307.  
  308.     0, 0
  309.   };
  310.  
  311. /* Set up the default .SUFFIXES list.  */
  312.  
  313. void
  314. set_default_suffixes ()
  315. {
  316.   suffix_file = enter_file (".SUFFIXES");
  317.  
  318.   if (no_builtin_rules_flag)
  319.     (void) define_variable ("SUFFIXES", 8, "", o_default, 0);
  320.   else
  321.     {
  322.       char *p = default_suffixes;
  323.       suffix_file->deps = (struct dep *)
  324.     multi_glob (parse_file_seq (&p, '\0', sizeof (struct dep), 1),
  325.             sizeof (struct dep));
  326.       (void) define_variable ("SUFFIXES", 8, default_suffixes, o_default, 0);
  327.     }
  328. }
  329.  
  330. /* Enter the default suffix rules as file rules.  This used to be done in
  331.    install_default_implicit_rules, but that loses because we want the
  332.    suffix rules installed before reading makefiles, and thee pattern rules
  333.    installed after.  */
  334.  
  335. void
  336. install_default_suffix_rules ()
  337. {
  338.   register char **s;
  339.   
  340.   if (no_builtin_rules_flag)
  341.     return;
  342.  
  343.  for (s = default_suffix_rules; *s != 0; s += 2)
  344.     {
  345.       register struct file *f = enter_file (s[0]);
  346.       /* Don't clobber cmds given in a makefile if there were any.  */
  347.       if (f->cmds == 0)
  348.     {
  349.       f->cmds = (struct commands *) xmalloc (sizeof (struct commands));
  350.       f->cmds->filename = 0;
  351.       f->cmds->commands = s[1];
  352.       f->cmds->command_lines = 0;
  353.     }
  354.     }
  355. }
  356.  
  357.  
  358. /* Install the default pattern rules.  */
  359.  
  360. void
  361. install_default_implicit_rules ()
  362. {
  363.   register struct pspec *p;
  364.   
  365.   if (no_builtin_rules_flag)
  366.     return;
  367.  
  368.   for (p = default_pattern_rules; p->target != 0; ++p)
  369.     install_pattern_rule (p, 0);
  370.  
  371.   for (p = default_terminal_rules; p->target != 0; ++p)
  372.     install_pattern_rule (p, 1);
  373. }
  374.  
  375. void
  376. define_default_variables ()
  377. {
  378.   register char **s;
  379.  
  380.   for (s = default_variables; *s != 0; s += 2)
  381.     (void) define_variable (s[0], strlen (s[0]), s[1], o_default, 1);
  382. }
  383.